home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
ANSWERS
/
CH03_1B.C
< prev
next >
Wrap
Text File
|
1994-05-15
|
301b
|
28 lines
main()
{
int index;
index = 0;
while (index < 10) {
printf("John Q. Doe\n");
index = index + 1;
}
}
/* Result of execution
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
John Q. Doe
*/